home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / lh113src.zip / USAGE_E.C < prev    next >
Text File  |  1989-05-14  |  4KB  |  76 lines

  1. /*************************************************
  2.     LHarc version 1.13b (c) Yoshi 1988-89.
  3.     usage & message module : 1989/ 5/14
  4.     (for version including no Kanji or Kana)
  5. HTAB = 4
  6. *************************************************/
  7.  
  8. char title[] = "\nLHarc 1.13b (c)Yoshi, 1988-89.\n";
  9.  
  10. char use[] =
  11. "LHarc  version 1.13b                Copyright (c) Haruyasu Yoshizaki, 1988-89.\n"
  12. "================================================================  05/14/89  ===\n"
  13. "               <<< High-performance file-compression program >>>\n"
  14. "===============================================================================\n"
  15. "  usage : LHarc [<command>] [{{/|-}{<switch>[-|+|2|<option>]}}...] <archive>\n"
  16. "                  [{<drive name>:}|{<base directory>\\}] [<path name> ...]\n"
  17. "-------------------------------------------------------------------------------\n"
  18. "  <command>\n"
  19. "     a: Add files to archive            u: Update files to archive\n"
  20. "     f: Freshen files in archive        m: Move new files into archive\n"
  21. "     d: Delete files from archive     e,x: EXtract files from archive\n"
  22. "     p: disPlay files in archive      l,v: View List of files in archive\n"
  23. "     s: make a Self-extract archive     t: Test integrity of archive\n"
  24. "  <switch>\n"
  25. "     r: Recursively collect files       w: assign Work directory\n"
  26. "     x: allow eXtended file names       m: no Message for query\n"
  27. "     p: distinguish full Path names     c: skip time-stamp Comparison\n"
  28. "     a: allow any Attributes of files   v: View files by another utility\n"
  29. "     n: display No indicator            k: Key word for AUTOLARC.BAT\n"
  30. "     t: archive's Time-stamp option\n"
  31. "===============================================================================\n"
  32. "  You can distribute or copy without any donation to me. Nifty-Serve  PFF00253\n"
  33. "  (Detailed descriptions are in user's manual.)          ASCII-pcs    pcs02846";
  34. /*
  35. "  Don't distribute to other network systems!             Nifty-Serve  PFF00253\n"
  36. "  !!!! This version is made only for myself. !!!!        ASCII-pcs    pcs02846";
  37. */
  38.  
  39. char M_UNKNOWNERR[]    =    "Unknown error";
  40. char M_INVCMDERR[]    =    "Invalid command";
  41. char M_MANYPATERR[]    =    "Too many files in command line";
  42. char M_NOARCNMERR[]    =    "No archive name";
  43. char M_NOFNERR[]    =    "No file name";
  44. char M_NOARCERR[]    =    "Archive not found";
  45. char M_RENAMEERR[]    =    "Can't rename Archive";
  46. char M_MKTMPERR[]    =    "Can't create temporary file";
  47. char M_DUPFNERR[]    =    "Same names in another path";
  48. char M_TOOMANYERR[]    =    "Too many files matched";
  49. char M_TOOLONGERR[]    =    "Too long path name";
  50. char M_NOFILEERR[]    =    "No file found";
  51. char M_MKFILEERR[]    =    "Can't create file";
  52. char M_RDERR[]        =    "Can't read file";
  53. char M_WTERR[]        =    "Can't write file";
  54. char M_MEMOVRERR[]    =    "Memory overflow";
  55. char M_INVSWERR[]    =    "Invalid switch";
  56. char M_CTRLBRK[]    =    "Ctrl-break pressed";
  57. char M_NOMATCHERR[]    =    "Can't find File";
  58. char M_COPYERR[]    =    "\nFailed in copying temporary file to archive";
  59. char M_NOTLZH[]        =    "Extension of archive(%s) is not '.LZH'. "
  60.                         "May cotinue process? [Y/N] ";
  61. char M_OVERWT[]        =    "Already exist. Overwrite? [Y/N] ";
  62. char M_MKDIR[]        =    "Make directory? [Y/N] ";
  63. char M_MKDIRERR[]    =    "Failed in making directory";
  64. char M_CRCERR[]        =    "CRC Err\n";
  65. char M_RDONLY[]        =    "Read only!";
  66.  
  67. char *errmes[] = {
  68.     M_UNKNOWNERR, M_INVCMDERR, M_MANYPATERR, M_NOARCNMERR,
  69.     M_NOFNERR, M_NOARCERR, M_RENAMEERR, M_MKTMPERR,
  70.     M_DUPFNERR, M_TOOMANYERR, M_TOOLONGERR, M_NOFILEERR,
  71.     M_MKFILEERR, M_RDERR, M_WTERR, M_MEMOVRERR, M_INVSWERR,
  72.     M_CTRLBRK, M_NOMATCHERR, M_COPYERR,
  73.     M_NOTLZH, M_OVERWT, M_MKDIR, M_MKDIRERR, M_CRCERR,
  74.     M_RDONLY
  75. };
  76.